home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 1810 / 1810.xpi / chrome / showcase.jar / content / settings / settings.xul < prev   
Extensible Markup Language  |  2010-01-17  |  3KB  |  58 lines

  1. <?xml version="1.0"?>
  2. <?xml-stylesheet href="chrome://global/skin/"?>
  3. <?xml-stylesheet href="chrome://mozapps/content/preferences/preferences.css"?>
  4. <?xml-stylesheet href="chrome://showcase/skin/preferences.css" type="text/css"?>
  5.  
  6. <!DOCTYPE bindings [
  7. <!ENTITY % dialogDTD SYSTEM "chrome://showcase/locale/pref-showcase.dtd" >
  8. %dialogDTD;
  9. <!ENTITY % tabBrowserDTD SYSTEM "chrome://global/locale/tabbrowser.dtd" >
  10. %tabBrowserDTD;
  11. ]>
  12.  
  13. <prefwindow id="ShowcasePreferences"
  14.         windowtype="mozilla:showcaseopt"
  15.         buttons="accept,cancel,extra2"
  16.         buttonlabelextra2="&settings;"
  17.         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  18.         xmlns:html="http://www.w3.org/1999/xhtml"
  19.         title="&page.header.title;"
  20.         style="width: &page.size.width;; height: 42em;"
  21.         onload="showcase_initPrefs();">
  22.  
  23.   <box>
  24.     <script type="application/x-javascript" src="chrome://showcase/content/settings/prefs.js" />
  25.     <stringbundleset>
  26.       <stringbundle id="prefsStrings" src="chrome://showcase/locale/prefs.properties" />
  27.     </stringbundleset>
  28.  
  29.     <popupset>
  30.       <popup id="showcase-settings-popup" position="before_start">
  31.         <menuitem id="showcase-defaults" label="&settings.default;" oncommand="if (showcase_defaultSettings()) document.location = 'chrome://showcase/content/settings/settings.xul';" />
  32.         <menuseparator />
  33.         <menuitem id="showcase-export" label="&settings.export;" oncommand="showcase_exportSettings();" />
  34.         <menuitem id="showcase-import" label="&settings.import;" oncommand="if (showcase_importSettings()) document.location = 'chrome://showcase/content/settings/settings.xul';" />
  35.       </popup>
  36.     </popupset>
  37.   </box>
  38.  
  39.   <!-- Window options -->
  40.   <prefpane id="paneWindow" label="&tab.window;" src="chrome://showcase/content/settings/pref-window.xul"/>
  41.  
  42.   <!-- Tab options -->
  43.   <prefpane id="paneTab" label="&tab.tab;" src="chrome://showcase/content/settings/pref-tab.xul"/>
  44.  
  45.   <!-- Sidebar options -->
  46.   <prefpane id="paneSidebar" label="&tab.sidebar;" src="chrome://showcase/content/settings/pref-sidebar.xul"/>
  47.  
  48.   <!-- Thumbnail options -->
  49.   <prefpane id="paneThumbnails" label="&tab.thumbnails;" src="chrome://showcase/content/settings/pref-thumbnails.xul"/>
  50.  
  51.   <!-- Shortcut options -->
  52.   <prefpane id="paneShortcuts" label="&tab.shortcuts;" src="chrome://showcase/content/settings/pref-shortcuts.xul"/>
  53.  
  54.   <!-- Advanced options -->
  55.   <prefpane id="paneAdvanced" label="&tab.advanced;" src="chrome://showcase/content/settings/pref-advanced.xul"/>
  56.  
  57. </prefwindow>
  58.